home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
ftp2.jacobs.com
/
2015.02.ftp2.jacobs.com.tar
/
ftp2.jacobs.com
/
pub
/
iPass
/
Open Mobile-V2.3.0-11624-V9.000.msi
/
Data1.cab
/
_037CB7B2FDB89A88431837109EEFA492
< prev
next >
Wrap
Text File
|
2012-10-24
|
660b
|
31 lines
; iPass Dial-Up Networking Script
;
; Copyright (C) 1997-2000 iPass Inc.
;
; Do not edit this script. Connection to the
; remote access points requires this script.
;
; Future auto-updates of this script will not
; occur when editions are made to this script.
;
proc main
integer count = 0
transmit "^M"
delay 1
while count < 5 do
transmit "^M"
waitfor "ogin:" until 2
if $SUCCESS then
goto DoLogin
endif
count = count + 1
endwhile
halt
DoLogin:
delay 1
transmit $USERID, raw
transmit "^M"
waitfor "Password:"
transmit $PASSWORD + "^M"
waitfor "PPP"
endproc